home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 16 / fpc225_3.zip / F-PCHELP.ZIP / FL.HLP < prev    next >
Text File  |  1987-12-21  |  1KB  |  30 lines

  1. \ FL.HLP        File selection.                         by Tom Zimmer
  2.  
  3. getfile         ( --- <a1> f1 )
  4.         A defered word that will contain a function that returns f1
  5.         true and a1 the counted string representing a filename
  6.         selected, or will return f1 false, indicating no file was
  7.         selected.
  8.  
  9. file>tib        ( a1 --- )
  10.         Move the counted string at a1 to the terminal input buffer.
  11.         BL WORD can then be used to read in the contents of TIB in
  12.         a program.
  13.  
  14. GFL             ( --- )
  15.         Check TIB to see if there is a name waiting there. If there
  16.         is a name waiting to be used in TIB then no other function
  17.         is performed. If TIB is empty, then use the function in
  18.         GETFILE to get a filename from the user, and put it in TIB.
  19.  
  20. FILE            ( | filename --- )
  21.         Open "filename" the file as the current file for read, write
  22.         edit ect.
  23.  
  24. OPEN            ( | filename --- )
  25. FL              ( | filename --- )
  26.         Both FL and OPEN are pseudonyms for FILE, which opens a
  27.         specified file as the current file for misc operations.
  28.  
  29.  
  30.